home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 05-10.BAS < prev    next >
BASIC Source File  |  1991-06-06  |  256b  |  23 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. CONST Colors = 256
  6.  
  7. Mode = FGgetmode
  8. FGsetmode 19
  9.  
  10. X = 0
  11.  
  12. FOR RectColor = 0 TO Colors-1
  13.    FGsetcolor RectColor
  14.    FGrect X, X, 0, 199
  15.    X = X + 1
  16. NEXT
  17. FGwaitkey
  18.  
  19. FGsetmode Mode
  20. FGreset
  21.  
  22. END
  23.